home *** CD-ROM | disk | FTP | other *** search
/ Champak 139 / (Vol 139) Sep 24 2011.iso / Games / xtreme_tugboating.swf / scripts / DefineSprite_34 / frame_1 / DoAction.as
Text File  |  2011-09-24  |  263b  |  18 lines

  1. score = 0;
  2. onEnterFrame = function()
  3. {
  4.    if(score < _root.score)
  5.    {
  6.       score += 2;
  7.       _rotation = random(10) - 5;
  8.       if(score > _root.score)
  9.       {
  10.          _root.score = score;
  11.       }
  12.    }
  13.    else
  14.    {
  15.       _rotation = 0;
  16.    }
  17. };
  18.